c# get executing method name

110

c# get executing method name -

using System.Diagnostics;
using System.Runtime.CompilerServices;
using System.Reflection;

[MethodImpl(MethodImplOptions.NoInlining)]
public string GetCurrentMethod()
{
    var st = new StackTrace();
    var sf = st.GetFrame(1);

    return sf.GetMethod().Name;
}

Comments

Submit
0 Comments